home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / csim / source.lha / source / C++SIM / Set.h < prev    next >
C/C++ Source or Header  |  1993-06-14  |  472b  |  40 lines

  1. /*
  2.  * Copyright (C) 1993
  3.  *
  4.  * Department of Computing Science,
  5.  * The University,
  6.  * Newcastle upon Tyne,
  7.  * UK.
  8.  */
  9.  
  10. /*
  11.  * This is used to simply test the operation of the Head and Link classes.
  12.  */
  13.  
  14. #ifndef SET_H_
  15. #define SET_H_
  16.  
  17. #ifndef COMMON_H_
  18. #include "common.h"
  19. #endif
  20.  
  21. #ifndef HEAD_H_
  22. #include "Head.h"
  23. #endif
  24.  
  25. #ifndef LINK_H_
  26. #include "Link.h"
  27. #endif
  28.  
  29.  
  30. class Set : public Head
  31. {
  32. public:
  33.     Set ();
  34.     ~Set ();
  35.     
  36.     Set* Intersect (Set*) const;
  37. };
  38.  
  39. #endif
  40.